.page-contributors {
  height: auto;
  background-color: #ffffff;
  border: 1px solid #e5e7eb; /* Assuming Tailwind's default border */
  border-radius: 0.5rem; /* rounded-lg = 8px */
  padding: 1.25rem; /* p-5 = 20px */
  margin-bottom: 2.5rem; /* mb-10 = 40px */
  position: relative;
}

.page-contributors .contributors-wrapper {
  display: flex;
  flex-direction: column;
}

/* On large screens and up (min-width: 1024px) */
@media (min-width: 1024px) {
  .page-contributors .contributors-wrapper {
    flex-direction: row;
  }
}

.page-contributors .content {
  width: 100%;
  height: 100%;
}

/* On large screens and up (min-width: 1024px) */
@media (min-width: 1024px) {
  .page-contributors .content {
    width: 66.666667%;
  }
}

.page-contributors .img {
  width: 100%;
  text-align: center;
  z-index: 10;
}

/* On large screens and up (min-width: 1024px) */
@media (min-width: 1024px) {
  .page-contributors .img {
    width: 33.333333%;
  }
}

.page-contributors .ImageRes-container {
  display: flex;
  justify-content: flex-end;
}

/* On large screens and up (min-width: 1024px) */
@media (min-width: 1024px) {
  .page-contributors .ImageRes-container {
    justify-content: center;
  }
}

.page-contributors .w-10 {
  width: 40px;
} 
.page-contributors .h-10 {
  height: 40px;
}

.page-contributors .line-bg {
  position: absolute;
  height: 185px;
  width: 100%;
  left: 0;
  bottom: 1.25rem; /* bottom-5 = 20px */
  background: url("/assets/images/contributors-bg.webp") no-repeat;
}

.rounded-full {
  border-radius: 50px;
}

.page-contributors .page-head {
  font-size: 1.5rem; /* text-2xl */
  font-weight: 600; /* font-semibold */
  margin-bottom: 2.5rem; /* mb-10 = 40px */
}

.page-contributors .writter-container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem; /* gap-5 = 20px */
  position: relative;
  z-index: 10;
  padding-top: 1.25rem; /* pt-5 = 20px */
  padding-bottom: 2.75rem; /* pb-11 = 44px */
  padding-left: 0;
  padding-right: 0;
}

/* Responsive: on medium screens and up (min-width: 768px) */
@media (min-width: 768px) {
  .page-contributors .writter-container {
    flex-direction: row;
  }
}

/* Responsive: on large screens and up (min-width: 1024px) */
@media (min-width: 1024px) {
  .page-contributors .writter-container {
    padding-left: 90px;
    padding-right: 90px;
  }
}

.page-contributors .writter-details {
  background-color: #f7f9ff;
  padding: 1.25rem; /* p-5 = 20px */
  border-radius: 0.75rem; /* rounded-xl = 12px */
  height: 100%;
}

.page-contributors .writter-details-head {
  display: flex;
  align-items: center;
  gap: 0.75rem; /* gap-3 = 12px */
  margin-bottom: 1rem; /* mb-4 = 16px */
}

.page-contributors .writter-avatar {
  height: 3rem; /* h-12 = 48px */
  width: 3rem; /* w-12 = 48px */
  border-radius: 50px;
}

.page-contributors .writter-name {
  font-size: 0.875rem; /* text-sm */
  font-weight: 500; /* font-medium */
  margin-bottom: 0.25rem; /* mb-1 = 4px */
}

.page-contributors .writter-dec {
  font-size: 0.75rem; /* text-xs */
  font-weight: 400; /* font-normal */
  text-transform: uppercase;
}

.page-contributors .writter-dis {
  font-size: 0.875rem; /* text-sm */
  line-height: 1.5; /* leading-[150%] = 150% */
}
